home *** CD-ROM | disk | FTP | other *** search
/ Atari Mega Archive 1 / Atari Mega Archive - Volume 1.iso / gnu / include / incl98.zoo / utime.h < prev    next >
C/C++ Source or Header  |  1993-07-10  |  273b  |  16 lines

  1. #ifndef _U_TIME_H
  2. #define _U_TIME_H
  3.  
  4. #ifndef _COMPILER_H
  5. #include <compiler.h>
  6. #endif
  7.  
  8. struct utimbuf {            /* type for times() call */
  9.     time_t    actime;
  10.     time_t    modtime;
  11. };
  12.  
  13. __EXTERN int utime __PROTO((const char *path, const struct utimbuf *times));
  14.  
  15. #endif  /* _U_TIME_H */
  16.